home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / updates / update24.zoo / lib / strnicmp.c < prev   
C/C++ Source or Header  |  1992-08-14  |  1KB  |  52 lines

  1. /* derived from strncmp from Henry Spencer's stringlib */
  2. /* revised by ERS */
  3. /* i-changes by Alexander Lehmann */
  4.  
  5. #include <string.h>
  6. #include <ctype.h>
  7.  
  8. /*
  9.  * strnicmp - compare at most n characters of string s1 to s2 without case
  10.  *           result is equivalent to strcmp(strupr(s1),s2)),
  11.  *           but doesn't change anything
  12.  */
  13.  
  14. asm(".stabs \"_strncmpi\",5,0,0,_strnicmp"); /* dept of clean tricks */
  15.  
  16. int                             /* <0 for <, 0 for ==, >0 for > */
  17. strnicmp(scan1, scan2, n)
  18. register const char *scan1;
  19. register const char *scan2;
  20. size_t n;
  21. {
  22.         register char c1, c2;
  23.         register long count;
  24.  
  25.         if (!scan1) {
  26.                 return scan2 ? -1 : 0;
  27.         }
  28.         if (!scan2) return 1;
  29.         count = n;
  30.         do {
  31.                 c1 = *scan1++; c1=toupper(c1);
  32.                 c2 = *scan2++; c2=toupper(c2);
  33.         } while (--count >= 0 && c1 && c1 == c2);
  34.  
  35.         if (count < 0)
  36.                 return(0);
  37.  
  38.         /*
  39.          * The following case analysis is necessary so that characters
  40.          * which look negative collate low against normal characters but
  41.          * high against the end-of-string NUL.
  42.          */
  43.         if (c1 == c2)
  44.                 return(0);
  45.         else if (c1 == '\0')
  46.                 return(-1);
  47.         else if (c2 == '\0')
  48.                 return(1);
  49.         else
  50.                 return(c1 - c2);
  51. }
  52.